home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 98 / Skunkware 98.iso / src / devtools / automake-1.0.tar.gz / automake-1.0.tar / automake-1.0 / tests / acoutnoq.test next >
Text File  |  1996-05-17  |  389b  |  22 lines

  1. #!/bin/sh
  2.  
  3. # Test for bug reported by Jerome Santini.
  4. # If I put this line in my configure.in:
  5. # AC_OUTPUT(Makefile src/Makefile tests/Makefile, echo timestamp > stamp-h)dnl
  6. # automake is not happy:
  7. # [ ... ]
  8.  
  9. . $srcdir/defs || exit 1
  10.  
  11. cat > configure.in << 'END'
  12. PACKAGE=nonesuch
  13. VERSION=nonesuch
  14. AC_ARG_PROGRAM
  15. AC_PROG_INSTALL
  16. AC_OUTPUT(Makefile, [true])
  17. END
  18.  
  19. : > Makefile.am
  20.  
  21. $AUTOMAKE
  22.